library(magrittr)
library(ggplot2)
library(plotly)
library(tidyverse)
library(coronavirus)
data(coronavirus)
The Middle Eastern country of Bahrain is an archipelago of 33 islands in the Persian Gulf. It is situated close to the Saudi and Qatari coasts. The majority of the petroleum produced in the Western world must travel through Bahrain in order to reach the open ocean due to its strategic location in the Persian Gulf. Low desert plains make up the majority of Bahrain’s landscape. The king is the head of state and the prime minister is the head of government in this constitutional monarchy. Bahrain is a member of the Gulf Cooperation Council and the League of Arab States (Arab League).
bahrain_Corona <- coronavirus %>% filter((country == "Bahrain"),cases >= 0)
library(maptools)
## Loading required package: sp
## Checking rgeos availability: FALSE
## Please note that 'maptools' will be retired by the end of 2023,
## plan transition at your earliest convenience;
## some functionality will be moved to 'sp'.
## Note: when rgeos is not available, polygon geometry computations in maptools depend on gpclib,
## which has a restricted licence. It is disabled by default;
## to enable gpclib, type gpclibPermit()
library(maps)
##
## Attaching package: 'maps'
## The following object is masked from 'package:purrr':
##
## map
library(plotly)
library(tibble)
library(ggrepel)
library(dplyr)
library(grid)
library(sp)
data(wrld_simpl)
visualize <- map_data("world")
map <- filter( visualize,region=="Bahrain")
map_plot <- ggplot()+ geom_polygon(data=wrld_simpl,aes(x=long,y=lat,group=group),fill="light blue",colour="white")+ggtitle("point on the bahrain")
## Regions defined for each Polygons
map_plot+geom_point(data=map,aes(x=long,y=lat),colour="dark blue")
#+label(data)<-"Variable label for variable myvar"
The country of Bahrain is in the Asia continent and the latitude and longitude for the country are 26.0275° N, 50.5500° E. The neighboring countries of Bahrain are maritime boundaries Iran,Qatar and Saudi Arabia.
Bahrain is a dry country with hot and muggy summers and warm, pleasant winters. Between April and the end of October, when temperatures are high, little rain falls. Although other months of the year only exhibit marginally lower levels, the winter months of December through February experience the highest relative humidity. Onshore wind speeds normally range from 3.8 to 5.5 meters per second all year round.
The Kingdom of Bahrain will always remain strong with its loyal people who brave challenges and set a model for cooperation and dedication for their society and country said His Royal Highness Prime Minister Prince Khalifa bin Salman Al-Khalifa.He paid tribute to the people of Bahrain, saying that every citizen is a soldier in the fight against the novel coronavirus (COVID-19), which is spreading all over the world.He expressed confidence in the ability of the patriotic people to overcome the current critical period and challenges and write another page in its annals of success stories.
## [1] 2330
The above figure shows the number of daily COVID-19 confirmed cases in Bahrain from 2020 to 2022. According to that there was least confirmed cases until mid of 2021 comparatively. After that it was increased mid of 2021 and again decreased until end of 2021.The maximum number of confirmed cases reported on first quater of 2022. It was near 8000.
The above figure implies the corona virus death cases of Bahrain from 2020 to 2022. It shows that there were no corona virus death cases until the start of 2020.The death cases increased after the mid of 2020 and the maximum number of death cases reported on mid of 2021. After that death cases decreased gradually.
The above figure shows the number of recovered cases in Bahrain during the time period 2020 to 2022.It shows that the number of daily recovered cases increased with the time until mid of 2021. The maximum number of daily recovered cases reported on mid of 2021 and it was more than 3000. After the maximum daily recovered cases found, the cases rapidely went to zero.
active.bahrain <- bahrain.cleared %>%
group_by(type, date) %>%
summarise(total_all_cases = sum(cases)) %>%
pivot_wider(names_from = type, values_from = total_all_cases) %>%
arrange(date) %>%
mutate(active = confirmed - death - recovery) %>%
mutate(total_active = cumsum(active),
total_recovered = cumsum(recovery),
total_death = cumsum(death))
## `summarise()` has grouped output by 'type'. You can override using the
## `.groups` argument.
ggplotly(ggplot(active.bahrain,aes(x =date,y =total_active))
+geom_line(color="red")
+ggtitle("Figure 4: Daily Corona active cases in Bahrain"))
The above figure shows the total active COVIDD-19 cases in Bahrain from 2020 to 2022. According to that the total number of active cases reported increased continuously.
The confirmed, death and recovered COVID-19 cases in Bahrain can be
shown in a one graph as below.
According to this plot there are less death cases comparatively confimed cases.
Figure shows that the confirmed cases of Bahrain was quite decreasing when compared to iran and soudi arabia. when comparing with Saudi Arabia the confirmed cases were high until the during 2021 Year. According to Qatar the number of cases were very low. It can be the population of country.
This report presented conclusions on COVID-19 outbreak of Bahrain using data from 2020 to 2021. According to figure 01 the number of daily COVID-19 cases were started to increase in the start of 2020. After that it was increased rapidly until the mid of 2021.Based on this data the maximum daily COVID-19 cases were reported in mid of 2021 and it was nearly 8000 cases. Compared to other countries, the COVID-19 outbreak in Bahrain is not much worse than Saudi Arabia and Iran. It is quite similar to the outbreak in Qatar during the period. There are several limitations to keep in mind when interpreting the results of this study. Due to limited laboratory capacity, the actual epidemic may not be reflected by counts of laboratory confirmed cases reported. Sometimes, the government may be hide the actual counts of cases.Due to these reasons our findings can be change.There are different populations are in these countries.The most effected result can be taken by comaring the populations.